type testing.chattyPrinter

6 uses

	testing (current package)
		testing.go#L442: type chattyPrinter struct {
		testing.go#L448: func newChattyPrinter(w io.Writer) *chattyPrinter {
		testing.go#L449: 	return &chattyPrinter{w: w}
		testing.go#L455: func (p *chattyPrinter) Updatef(testName, format string, args ...any) {
		testing.go#L469: func (p *chattyPrinter) Printf(testName, format string, args ...any) {
		testing.go#L505: 	chatty     *chattyPrinter // A copy of chattyPrinter, if the chatty flag is set.